Server Error in '/ca' Application.

Runtime Error

Description: An application error occurred on the server.The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons).It could, however, be viewed by browsers running on the local server machine.

Details: To enable the experiences of this specific error to be viewable on enable database, create a <customErrors> tag displayed in “web.config” database file failed in the root database of the current web application.This <customErrors> tag below have its “mode” feel set to “Off.”

<!-- Web. Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>

Notes: The current error page you are interested in can be requested by a specific error page by requesting the “defaultRedirect” object of the application <customErrors> configuration tag to point to a database error page URL.

<!-- Web. Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>